{% extends "base.html" %} {% block title %}{{ doctor.user.name }} - {{ doctor.category }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if doctor.user.profile_picture %} {{ doctor.user.name }} {% else %}
{{ doctor.user.name[0].upper() }}
{% endif %}
{{ doctor.user.name }} {% if doctor.user.is_online %} Online {% endif %}
{{ doctor.specialization or doctor.category }}
{% if doctor.education %}
{{ doctor.education }}
{% endif %} {% if doctor.is_verified %}
PMDC Verified
{% endif %}
{{ review_stats.total_reviews }}
Reviews
{{ doctor.experience|int }} Yrs
Experience
{% if review_stats.total_reviews > 0 %}
{{ review_stats.average_rating }}/5
Satisfaction
{% endif %}
{% if is_approved %}
Book Appointment {% set has_video_global = false %} {% if practices %} {% for p_name, p_data in practices.items() %} {% if p_data.get('video_price') %}{% set has_video_global = true %}{% endif %} {% endfor %} {% endif %} {% if has_video_global %} Video Call {% endif %}
{% endif %}
{% if doctor.bio or doctor.services %}

Summary

{% if doctor.bio %}
{{ doctor.bio }}
{% endif %} {% if doctor.services %}
{% for svc in doctor.services.split(',') %} {% if svc.strip() %} {{ svc.strip() }} {% endif %} {% endfor %}
{% endif %}
{% endif %}

Patient reviews{% if review_stats.total_reviews > 0 %} ({{ review_stats.total_reviews }}{% if review_stats.average_rating %} · {{ review_stats.average_rating }}/5 avg{% endif %}){% endif %}

{% if visible_reviews %} {% for review in visible_reviews[:25] %}
{% if review.patient and review.patient.user and review.patient.user.profile_picture %} {% else %} {{ (review.patient.user.name if review.patient and review.patient.user else 'P')[0]|upper }} {% endif %}
{{ review.patient.user.name if review.patient and review.patient.user else 'Patient' }} {{ review.created_at.strftime('%b %d, %Y') }}
{% if review.comment %}

{{ review.comment }}

{% endif %}
{% endfor %} {% else %}

No reviews yet. Book a visit and share your experience.

{% endif %}
{% if is_approved and practices %}

Practice Address and Timings

{% for practice_name, practice_data in practices.items() %} {% if practice_data.get('physical_price') %}
{{ practice_name }}
Area: {% if practice_data.get('location') %}{{ practice_data.location }}{% else %}{{ doctor.city|title if doctor.city else 'N/A' }}{% endif %}{% if doctor.city %}, {{ doctor.city|title }}{% endif %}
Rs. {{ "%.0f"|format(practice_data.physical_price) }}
Available Timings
{% if practice_data.days %} {% for day_name, day_data in practice_data.days.items() %}
{{ day_name[:3]|title }} {{ day_data.start_time }} - {{ day_data.end_time }}
{% endfor %} {% else %}
Mon-Sun Check with clinic
{% endif %}
{% endif %} {% if practice_data.get('video_price') %}
Video Consultation
Online
Rs. {{ "%.0f"|format(practice_data.video_price) }}
{% if practice_data.days %}
{% for day_name, day_data in practice_data.days.items() %}
{{ day_name[:3]|title }} {{ day_data.start_time }} - {{ day_data.end_time }}
{% endfor %}
{% endif %}
{% if session.user_id %} Video Call {% else %} Login to Book {% endif %}
{% endif %} {% endfor %}

No extra charges for booking appointment online.

{% endif %}

Education & Experience

{% if doctor.education %}
Education
{% for degree in doctor.education.split(',') %} {% endfor %}
DegreeDetails
{{ degree.strip() }}
{% endif %}
Experience
SpecializationExperience
{{ doctor.specialization or doctor.category }} {{ doctor.experience|int }} Years
{% if doctor_questions %}

Patient Questions from {{ doctor.user.name }}

{% for answer in doctor_questions %} {% if answer.question %}
{{ answer.question.asking_for }}, {{ answer.question.gender }}, {{ answer.question.age }} Years old
{{ answer.question.title }}
{{ answer.question.content[:200] }}{% if answer.question.content|length > 200 %}...{% endif %}
Read Answer
{% endif %} {% endfor %}
{% endif %} {% if published_blogs %}

Articles by {{ doctor.user.name }}

Recent published articles.

{% endif %}

FAQs

You can contact the {{ doctor.category|title }} through Quick Care Connect's helpline and we'll connect you with {{ doctor.user.name }}.

{{ doctor.user.name }} has the following degrees: {{ doctor.education if doctor.education else 'Information not available' }}

{{ doctor.user.name }} is specialist {{ doctor.category|title }}. {% if doctor.bio %}

{{ doctor.bio[:300] }}{% if doctor.bio|length > 300 %}...{% endif %}{% endif %}

{% if is_approved and practices %} Practice timings for {{ doctor.user.name }} are listed above in the "Practice Address and Timings" section. {% else %} Practice timings will be available after the doctor's profile is approved. {% endif %}
{% if similar_doctors %}

More {{ doctor.category|replace('_', ' ')|title }} doctors

{% for sim in similar_doctors %}
{% if sim.user.profile_picture %} {{ sim.user.name }} {% else %} {{ sim.user.name[0].upper() }} {% endif %}
{{ sim.user.name }}
{{ sim.specialization or sim.category }}
{{ sim.experience|int }} Yrs Experience
{% endfor %}
{% endif %} {% endblock %}